home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Setup / BCB / data.z / srvr_atl.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-09  |  1.2 KB  |  51 lines

  1. //---------------------------------------------------------------------------
  2. // Borland C++Builder
  3. // Copyright (c) 1987, 1998 Borland International Inc.  All Rights Reserved.
  4. //---------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef srvr_ATLH
  7. #define srvr_ATLH
  8.  
  9. // Check if we're using ATLVCL
  10. //
  11. #if defined(USING_ATLVCL)
  12.  
  13. #include <atlbase.h>
  14. /*
  15. // Declares TComModule
  16. //
  17. #include <tcommod.h>
  18.  
  19. // NOTE: You may derive a class from TComModule and use it as your server's
  20. //       module object. (i.e. Assign an instance of that class to _Module).
  21. //       However, you must *NOT* change the name _Module.
  22. //
  23. extern TComModule _Module;
  24. */
  25.  
  26. // To get declaration of _Module
  27. #include <atl\atlvcl.h>
  28.  
  29. #elif defined(USING_ATL)
  30.  
  31. // Light-weight ATL support
  32. //
  33.  
  34. #include <atlbase.h>
  35.  
  36. // NOTE: You may derive a class from TComModule and use it as your server's
  37. //       module object. (i.e. Assign an instance of that class to _Module).
  38. //       However, you must *NOT* change the name _Module.
  39. //
  40. extern CComModule _Module;
  41.  
  42. #include <atlcom.h>
  43. #include <shellapi.h>
  44. #include <atlctl.h>
  45.  
  46. #endif
  47.  
  48.  
  49. #endif    // srvr_ATLH
  50.  
  51.